home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1999 February / Software of the Month - Ultimate Collection Shareware 258.iso / pc / Intro.dir / 00046_Script_skipIntro < prev    next >
Text File  |  1998-12-07  |  407b  |  24 lines

  1. on enterFrame
  2.   if the videoForWindowsPresent = FALSE then
  3.     go to frame "Start"
  4.   end if
  5. end
  6.  
  7.  
  8. on keyUp
  9.   set the movieRate of sprite 2 to 0
  10.   glow(2, FALSE)
  11.   unloadMember "Intro"
  12.   updateStage
  13.   glow(2, TRUE)
  14.   go to frame "START"
  15. end
  16.  
  17. on mouseUp
  18.   set the movieRate of sprite 2 to 0
  19.   glow(2, FALSE)
  20.   unloadMember "Intro"
  21.   updateStage
  22.   glow(2, TRUE)
  23.   go to frame "Start"
  24. end